home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / plant0.zip / PLANT_1.POV < prev    next >
Text File  |  1993-10-07  |  422b  |  30 lines

  1. // Persistence of Vision Raytracer v1.0
  2. // Shape Test file
  3.  
  4. include "colors.inc"
  5.  
  6. camera {
  7.    location <0.0 13 -21 >
  8.    look_at <0 8 0>
  9. }
  10.  
  11. object {       
  12.    light_source { <40 100 -100> 
  13.       color White
  14.    }
  15. }
  16.  
  17. include "plant.inc"
  18.  composite{
  19.   plant  
  20. }
  21.  
  22. object { plane { <0.0 1.0 0.0> 0.0 }
  23.    texture {
  24.       color red 1 green 0.75 blue 0.3
  25.       ambient 0.3
  26.       diffuse 0.7
  27.    }
  28. }  
  29.  
  30.